home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / winsock / ircii2-6.zip / SRC\IRCII-2.6\INCLUDE\DEBUG.H < prev    next >
C/C++ Source or Header  |  1994-12-28  |  457b  |  29 lines

  1. /*
  2.  * debug.h - header file for phone's debug routine..
  3.  *
  4.  * Copyright (C) 1993, Matthew Green.
  5.  *
  6.  * @(#)$Id: debug.h,v 1.5 1994/10/15 23:26:26 mrg Stab $
  7.  */
  8.  
  9. #ifndef _DEBUG_H_
  10. # define _DEBUG_H_ 
  11.  
  12. #ifdef DEBUG
  13. # define Debug(x) debug x
  14.  
  15. # ifdef USE_STDARG_H
  16. extern  void    debug( int, char *, ... );
  17. # else
  18. extern        void    debug();
  19. # endif
  20.  
  21. extern    int    debuglevel;
  22. extern    int    setdlevel();
  23.  
  24. # else
  25. # define Debug(x)
  26. # endif
  27.  
  28. #endif /* _DEBUG_H_ */
  29.